count of distinct acyclic paths from A[a,b] to A[c,d]?

Posted by Sorush Rabiee on Stack Overflow See other posts from Stack Overflow or by Sorush Rabiee
Published on 2010-03-23T14:56:35Z Indexed on 2010/03/28 11:03 UTC
Read the original article Hit count: 334

I'm writing a sokoban solver for fun and practice, it uses a simple algorithm (something like BFS with a bit of difference).

now i want to estimate its running time ( O and omega). but need to know how to calculate count of acyclic paths from a vertex to another in a network. actually I want an expression that calculates count of valid paths, between two vertices of a m*n matrix of vertices.

a valid path:

  • visits each vertex 0 or one times.
  • have no circuits

for example this is a valid path:

alt text

but this is not:

alt text

What is needed is a method to find count of all acyclic paths between the two vertices a and b.

comments on solving methods and tricks are welcomed.

© Stack Overflow or respective owner

Related posts about algorithm

Related posts about discrete-mathematics